font-family|Specifies a prioritized list of font family names and/or generic family names
font-size|Describes the size of the font when set solid

font-weight: bold
font-style: italic

text-decoration: underline|Each line of text is underlined
text-decoration: overline|Each line of text has a line above it
text-decoration: line-through|Each line of text has a line through the middle

text-transform: capitalize|Puts the first character of each word in uppercase
text-transform: uppercase|Puts all characters of each word in uppercase
text-transform: lowercase|Puts all characters of each word in lowercase

font-variant: small-caps|Specifies a font that is labeled as a small-caps font

text-align: left
text-align: center
text-align: right
text-align: justify

vertical-align: top|Align the top of the box with the top of the line box
vertical-align: middle|Align the vertical midpoint of the box with the baseline of the parent box plus half the x-height of the parent
vertical-align: bottom|Align the bottom of the box with the bottom of the line box

vertical-align: super|Raise the baseline of the box to the proper position for superscripts of the parent's box
vertical-align: sub|Lower the baseline of the box to the proper position for subscripts of the parent's box

color|Describes the foreground color of an element's text content
background-color|Sets the background color of an element
background-image|Sets the background image of an element

width|Specifies the content width of boxes
height|Specifies the content height of boxes

line-height|Sets on a block-level element whose content is composed of inline-level elements
text-indent|Specifies the indentation of the first line of text in a block
letter-spacing|Specifies spacing behavior between text characters
word-spacing|Specifies spacing behavior between words

position: static|The box is a normal box, laid out according to the normal flow. The 'left' and 'top' properties do not apply.
position: relative|The box's position is calculated according to the normal flow (this is called the position in normal flow).
position: absolute|The box's position (and possibly size) is specified with the 'left', 'right', 'top', and 'bottom' properties.

white-space: pre|This value prevents user agents from collapsing sequences of whitespace
white-space: nowrap|This value collapses whitespace, but suppresses line breaks within text

overflow|Specifies whether the content of a block-level element is clipped when it overflows the element's box

float: left|The element generates a block box that is floated to the left.
float: right|The element generates a block box that is floated to the right.

z-index|Specifies the stack level

margin|Specifies the width of the margin area of a box
padding|Specifies the width of the padding area of a box

border-style: dotted|The border is a series of dots 
border-style: dashed|The border is a series of short line segments
border-style: solid|The border is a single line segment
border-style: double|The border is two solid lines
border-style: groove|The border looks as though it were carved into the canvas
border-style: ridge|The border looks as though it were coming out of the canvas
border-style: inset|The border makes the entire box look as though it were embedded in the canvas
border-style: outset|The border makes the entire box look as though it were coming out of the canvas

display: inline|Causes an element to generate one or more inline boxes
display: block|Causes an element to generate a principal block box
display: list-item|Causes an element to generate a principal block box and a list-item inline box

list-style-position: outside|The marker box is outside the principal block box
list-style-position: inside|The marker box is the first inline box in the principal block box, after which the element's content flows

list-style-type: disc
list-style-type: circle
list-style-type: square

list-style-type: decimal|Decimal numbers, beginning with 1
list-style-type: lower-roman|Lowercase roman numerals
list-style-type: upper-roman|Uppercase roman numerals
list-style-type: lower-alpha|Lowercase ascii letters
list-style-type: upper-alpha|Uppercase ascii letters